home *** CD-ROM | disk | FTP | other *** search
- /************************************************************************/
- /* Project...: Standard ANSI-C Library */
- /* Name......: xsetjmp.c */
- /* Purpose...: Extra setjmp/longjmp support */
- /* Copyright.: ©Copyright 1994 by metrowerks inc. All rights reserved. */
- /************************************************************************/
-
- #include <setjmp.h>
- #include <MWException.h>
-
- void __longjmp_ldestr(jmp_buf env,int val)
- {
- __destroy_autotemp_objects_to((void *)*env);
- longjmp(env,val);
- }
-